use PACKAGE_VERSION,bump year (#318654)
authorStefan Kost <stefkost@src.gnome.org>
Wed, 12 Oct 2005 13:23:10 +0000 (13:23 +0000)
committerStefan Kost <stefkost@src.gnome.org>
Wed, 12 Oct 2005 13:23:10 +0000 (13:23 +0000)
* demos/gtk-demo/appwindow.c: (about_cb):
use PACKAGE_VERSION,bump year (#318654)

ChangeLog
ChangeLog.pre-2-10
demos/gtk-demo/appwindow.c

index 350c8735dd6ca9c8991c6f837c225487997198f5..6fd9db0df3baa0980c91df0c213c187b2f08134c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-10-12  Stefan Kost  <ensonic@users.sf.net>
+
+       * demos/gtk-demo/appwindow.c: (about_cb):
+         use PACKAGE_VERSION,bump year (#318654)
+
 2005-10-11  Matthias Clasen  <mclasen@redhat.com>
 
        * gtk/gtktextbtree.c (_gtk_text_btree_delete): Try to match an off 
index 350c8735dd6ca9c8991c6f837c225487997198f5..6fd9db0df3baa0980c91df0c213c187b2f08134c 100644 (file)
@@ -1,3 +1,8 @@
+2005-10-12  Stefan Kost  <ensonic@users.sf.net>
+
+       * demos/gtk-demo/appwindow.c: (about_cb):
+         use PACKAGE_VERSION,bump year (#318654)
+
 2005-10-11  Matthias Clasen  <mclasen@redhat.com>
 
        * gtk/gtktextbtree.c (_gtk_text_btree_delete): Try to match an off 
index a15c9e519bb7cab37ac43664ab29160ad6f30092..f6bc4af795efd0867a90d00385a9880544558760 100644 (file)
@@ -4,6 +4,7 @@
  */
 
 #include <gtk/gtk.h>
+#include "config.h"
 #include "demo-common.h"
 
 static GtkWidget *window = NULL;
@@ -132,8 +133,8 @@ about_cb (GtkAction *action,
   gtk_about_dialog_set_url_hook (activate_url, NULL, NULL);
   gtk_show_about_dialog (GTK_WINDOW (window),
                         "name", "GTK+ Code Demos",
-                        "version", "2.4.3",
-                        "copyright", "(C) 1997-2004 The GTK+ Team",
+                        "version", PACKAGE_VERSION,
+                        "copyright", "(C) 1997-2005 The GTK+ Team",
                         "license", license,
                         "website", "http://www.gtk.org",
                         "comments", "Program to demonstrate GTK+ functions.",